projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5751cd6
)
builder-tool: Avoid duplicate path prefixes
author
Matthias Clasen
<mclasen@redhat.com>
Sun, 1 Nov 2020 19:47:42 +0000
(14:47 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 2 Nov 2020 04:09:26 +0000
(23:09 -0500)
It is enough to print the file in which the error
occurred once; GtkBuilder already makes that part
of its error message.
gtk/tools/gtk-builder-tool-validate.c
patch
|
blob
|
history
diff --git
a/gtk/tools/gtk-builder-tool-validate.c
b/gtk/tools/gtk-builder-tool-validate.c
index 63910f9fb6b2b076e6cbfca3df0fcf6c1e792017..8551231730143d2dc58c7730c05f785cfd7f3015 100644
(file)
--- a/
gtk/tools/gtk-builder-tool-validate.c
+++ b/
gtk/tools/gtk-builder-tool-validate.c
@@
-139,7
+139,7
@@
validate_file (const char *filename)
}
else
{
- g_printerr ("%s
: %s\n", filename
, error->message);
+ g_printerr ("%s
\n"
, error->message);
return FALSE;
}
}